home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / LIBRARY / CMPLTPAS / FONTS.PAS < prev    next >
Pascal/Delphi Source File  |  1988-05-25  |  680b  |  31 lines

  1.  
  2. { Copyright (c) 1985, 88 by Borland International, Inc. }
  3.  
  4. unit Fonts;
  5. { Sample unit to accompany GRLINK.PAS. This unit links all the BGI graphics
  6.   fonts into a single TPU file. This makes it easy to incorporate the font
  7.   files directly into an .EXE file. See GRLINK.PAS for more information.
  8. }
  9. interface
  10.  
  11. procedure GothicFontProc;
  12. procedure SansSerifFontProc;
  13. procedure SmallFontProc;
  14. procedure TriplexFontProc;
  15.  
  16. implementation
  17.  
  18. procedure GothicFontProc; external;
  19. {$L GOTH.OBJ }
  20.  
  21. procedure SansSerifFontProc; external;
  22. {$L SANS.OBJ }
  23.  
  24. procedure SmallFontProc; external;
  25. {$L LITT.OBJ }
  26.  
  27. procedure TriplexFontProc; external;
  28. {$L TRIP.OBJ }
  29.  
  30. end.
  31.